This lecture follows on from last Wednesday’s: rather than fitting several linear models (each for a different response variable) simultaneously, we’re going to use a mixed model to fit multivariate data.
Useful packages:
library(MCMCglmm)
library(lme4)
library(brms)
library(tidyr)
library(dplyr)
library(corrplot)
library(broom.mixed)
library(dotwhisker)
library(ggplot2); theme_set(theme_bw())
Get data:
data_url <- "http://datadryad.org/bitstream/handle/10255/dryad.8377/dll.csv"
if (!file.exists("dll.csv")) {
download.file(data_url,dest="dll.csv")
}
dll_data <- read.csv("dll.csv")
## make temp a factor (25 vs 30 degrees)
dll_data$temp <- factor(dll_data$temp)
## scale relevant variables (fancier but less repetition than previously)
morph_vars <- c("femur","tibia","tarsus","SCT")
morph_vars_sc <- paste(morph_vars,"s",sep="_")
dll_data2 <- dll_data
## c() drops unwanted structure from the results of scale()
for (i in 1:length(morph_vars)) {
dll_data2[[morph_vars_sc[i]]] <- c(scale(dll_data[[morph_vars[i]]]))
}
The previous expression for the multivariate model was
\[ \mathbf{Y} = \mathbf{XB} + \mathbf{E} \]
In contrast, the expression for the mixed model is
\[ y = \mathbf{X\beta} + \mathbf{Zb} + \epsilon \]
where \(\mathbf{b}\) is a set of Gaussian variables with a variance-covariance matrix \(\mathbf{\Sigma}\) which we estimate.
Suppose we have observations of \(m\) individuals, with \(p\) different observations (traits, or time points, or types of measurement, or …) for each individual. The way we’re going to make this work is to expand (“melt”, or gather() if we’re using tidyr) the data set to be \(mp\) observations long, then treat each individual (which was previously a single row of the data set but now comprises \(p\) rows) as a group (we’ll call this units):
dll_melt <- (dll_data2
%>% select(-c(femur,tibia,tarsus,SCT)) ## drop unscaled vars
%>% mutate(units=factor(1:n()))
%>% gather(trait,value, -c(units,replicate,line,genotype,temp))
%>% drop_na()
)
t1 <- system.time(
lmer1 <- lmer(value ~ trait:(genotype*temp) - 1 +
(trait-1|line) + (trait-1|units),
data=dll_melt,
control=lmerControl(optCtrl=list(ftol_abs=1e-8),
check.nobs.vs.nlev="ignore",
check.nobs.vs.nRE="ignore"))
)
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
-1 to drop intercepttrait:(1+genotype+temp+genotype:temp)trait + trait:genotype + trait:temp + trait:genotype:temp(trait-1|line) means “variance/covariances of traits among lines”-1 so we consider traits, not differences among traits(trait-1|units) specifies “var/cov of traits among units (individuals)”lmer always includes a residual variance term. This is redundant because we have only one data point per individual per trait: lmerControl(...) tells lmer not complainprint(lmer1), summary(lmer1) useful but awkward (16 fixed effect coefficients, we’ll look at graphical summaries insteadfixef() (fixed effects), ranef() (line/indiv deviations from pop mean), coef() (line/indiv-level estimates), VarCorr (random effects var/cov)getME(fit,"theta") extracts themall(abs(getME(lmer1,"theta"))>1e-4) ## check for singularity (OK in this case)
## [1] TRUE
VarCorr(lmer1)
## Groups Name Std.Dev. Corr
## units traitfemur_s 0.648
## traitSCT_s 0.723 0.06
## traittarsus_s 0.558 0.59 0.21
## traittibia_s 0.664 0.93 0.12 0.48
## line traitfemur_s 0.489
## traitSCT_s 0.392 0.14
## traittarsus_s 0.462 0.81 0.37
## traittibia_s 0.473 0.87 0.22 0.83
## Residual 0.471
par(mfrow=c(1,2))
vv1 <- VarCorr(lmer1)
## fix unit variance-covariance by adding residual variance:
diag(vv1$units) <- diag(vv1$units)+sigma(lmer1)^2
corrplot.mixed(cov2cor(vv1$line),upper="ellipse")
corrplot.mixed(cov2cor(vv1$units),upper="ellipse")
Correlations of traits across lines are stronger than correlations within individuals. In both cases correlations are all positive (i.e. first axis of variation is size variation?)
cc1 <- tidy(lmer1,effect="fixed") %>%
tidyr::separate(term,into=c("trait","fixeff"),extra="merge",
remove=FALSE)
dwplot(cc1)+facet_wrap(~fixeff,scale="free",ncol=2)+
geom_vline(xintercept=0,lty=2)
These results tell approximately the same story (coefficients are consistent across traits within a fixed effect, e.g. effect of higher temperature is to reduce scores on all traits).
cc2 <- tidy(lmer1,effect="ran_pars",conf.int=TRUE,conf.method="profile")
## Computing profile confidence intervals ...
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig01
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in optwrap(optimizer, par = start, fn = function(x)
## dd(mkpar(npar1, : convergence code 1 from bobyqa: bobyqa -- maximum number
## of function evaluations exceeded
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): unexpected decrease
## in profile: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig08
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig09
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig10
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig11
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig12
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig13
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig14
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig15
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig16
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig17
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig18
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig19
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sig20
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zeta(shiftpar, start = opt[seqpar1][-w]): NAs detected in
## profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in nextpar(mat, cc, i, delta, lowcut, upcut): Last two rows have
## identical or NA .zeta values: using minstep
## Warning in (function (npt = min(n + 2L, 2L * n), rhobeg = NA, rhoend =
## NA, : unused control arguments ignored
## Warning in zetafun(np, ns): NAs detected in profiling
## Warning in FUN(X[[i]], ...): non-monotonic profile for .sigma
## Warning in confint.thpr(pp, level = level, zeta = zeta): bad spline fit
## for .sig01: falling back to linear interpolation
## Warning in confint.thpr(pp, level = level, zeta = zeta): bad spline fit
## for .sig08: falling back to linear interpolation
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig09
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig10
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig11
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig12
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig13
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig14
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig15
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig16
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig17
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig18
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig19
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sig20
## Warning in min(diff(obj1[, 2]) < (-non.mono.tol), na.rm = TRUE): no non-
## missing arguments to min; returning Inf
## Warning in confint.thpr(pp, level = level, zeta = zeta): non-monotonic
## profile for .sigma
Another option is the MCMCglmm package, which has a natural interface for general multivariate mixed models. It takes a while to get used to the interface, but here is an example. Please check out here for more information about the package, and here for an overview of how to use it.
First I find it easier (given the interface of MCMCglmm) to create a formula with the response variables and predictors. This is only for the fixed effects part of the model.
fmla.MMLM1 <- cbind(femur_s, tibia_s, tarsus_s, SCT_s) ~
trait:(genotype*temp) - 1
Now we need to let MCMCglmm know which family (i.e. distribution) the response variables are. Since all are normal (Gaussian), we can specify it the following way.
fam.test <- rep("gaussian", 4 )
Since MCMCglmm is fundamentally a Bayesian approach, it needs a prior. If you provide no prior by default, it tries a “flat” prior, although this rarely works. In this case I am providing a not-quite-flat prior, but just for the random effects of line and for the residual variances (could also provide them for the fixed effects).
prior.model.1 <- list( R=list(V=diag(4)/4, nu=0.004),
G=list(G1=list(V=diag(4)/4, nu=0.004)))
##,depends.on=c("prior","mod_fm","get_data")}
t2 <- system.time(
MMLM1.fit <- MCMCglmm(fmla.MMLM1,
random=~ us(trait):line,
rcov=~ us(trait):units,
prior= prior.model.1,
data= dll_data2,
family = fam.test,
nitt= 10000, burnin= 2000, thin=10)
)
## Warning: 'cBind' is deprecated.
## Since R version 3.2.0, base's cbind() should work fine with S4 objects
fmla.MMLM1 is the formula object we created abovelmer formulatrait term is a reserved word in MCMCglmm, letting it know we want to fit a multivariate mixed modelMCMCglmm automatically melts the data for us (and assigns the name trait the same way we did manually above)random=~us(trait):line asks MCMCglmm to fit an unstructured covariance matrix for the line term (i.e the different wild type genotypes we are examining).- “Unstructured” means we are estimating the complete 4 x 4 matrix of covariances (= 4*5/2 = 10 elements total)(trait-1|line) in lmer modelMCMCglmm also automatically adds a unitsrcov=~us(trait):units = (trait-1|units)MCMCglmm offers a few other options for variance-covariance structuresThe nitt is how many iterations for the MCMC we want to perform, and the burnin is how many should be ignored at the beginning of the random walk.
The fit takes 19 seconds.
Normally we would spend a fair bit of time on diagnostics of the MCMC, but for now we will just quickly check the trace plots and autocorrelation.
In the fitted object $Sol is for solution, which is the term used for fixed effects in MCMCglmm. $VCV is for the variance-covariance matrix.
library(lattice)
xyplot(MMLM1.fit$Sol[,1:4])
xyplot(MMLM1.fit$Sol[,13:16])
acf(MMLM1.fit$Sol[,1:2])
xyplot(MMLM1.fit$VCV[,1:4])
acf(MMLM1.fit$VCV[,1:3])
Nothing terribly worrying.
summary(MMLM1.fit)
##
## Iterations = 2001:9991
## Thinning interval = 10
## Sample size = 800
##
## DIC: 17451
##
## G-structure: ~us(trait):line
##
## post.mean l-95% CI u-95% CI eff.samp
## traitfemur_s:traitfemur_s.line 0.2926 0.1471 0.487 800
## traittibia_s:traitfemur_s.line 0.2471 0.1158 0.428 800
## traittarsus_s:traitfemur_s.line 0.2238 0.1050 0.390 800
## traitSCT_s:traitfemur_s.line 0.0313 -0.0805 0.140 800
## traitfemur_s:traittibia_s.line 0.2471 0.1158 0.428 800
## traittibia_s:traittibia_s.line 0.2744 0.1321 0.462 876
## traittarsus_s:traittibia_s.line 0.2207 0.0994 0.382 925
## traitSCT_s:traittibia_s.line 0.0476 -0.0541 0.160 800
## traitfemur_s:traittarsus_s.line 0.2238 0.1050 0.390 800
## traittibia_s:traittarsus_s.line 0.2207 0.0994 0.382 925
## traittarsus_s:traittarsus_s.line 0.2604 0.1257 0.417 800
## traitSCT_s:traittarsus_s.line 0.0790 -0.0338 0.183 800
## traitfemur_s:traitSCT_s.line 0.0313 -0.0805 0.140 800
## traittibia_s:traitSCT_s.line 0.0476 -0.0541 0.160 800
## traittarsus_s:traitSCT_s.line 0.0790 -0.0338 0.183 800
## traitSCT_s:traitSCT_s.line 0.1845 0.0915 0.311 904
##
## R-structure: ~us(trait):units
##
## post.mean l-95% CI u-95% CI eff.samp
## traitfemur_s:traitfemur_s.units 0.6424 0.60090 0.6821 800
## traittibia_s:traitfemur_s.units 0.4009 0.36773 0.4398 796
## traittarsus_s:traitfemur_s.units 0.2139 0.18410 0.2426 800
## traitSCT_s:traitfemur_s.units 0.0261 -0.00831 0.0553 800
## traitfemur_s:traittibia_s.units 0.4009 0.36773 0.4398 796
## traittibia_s:traittibia_s.units 0.6668 0.62479 0.7107 688
## traittarsus_s:traittibia_s.units 0.1800 0.14951 0.2056 664
## traitSCT_s:traittibia_s.units 0.0604 0.02982 0.0929 800
## traitfemur_s:traittarsus_s.units 0.2139 0.18410 0.2426 800
## traittibia_s:traittarsus_s.units 0.1800 0.14951 0.2056 664
## traittarsus_s:traittarsus_s.units 0.5336 0.50223 0.5669 800
## traitSCT_s:traittarsus_s.units 0.0848 0.05603 0.1178 785
## traitfemur_s:traitSCT_s.units 0.0261 -0.00831 0.0553 800
## traittibia_s:traitSCT_s.units 0.0604 0.02982 0.0929 800
## traittarsus_s:traitSCT_s.units 0.0848 0.05603 0.1178 785
## traitSCT_s:traitSCT_s.units 0.7471 0.70279 0.8006 800
##
## Location effects: cbind(femur_s, tibia_s, tarsus_s, SCT_s) ~ trait:(genotype * temp) - 1
##
## post.mean l-95% CI u-95% CI eff.samp
## traitfemur_s:genotypeDll 0.5084 0.3002 0.7413 800
## traittibia_s:genotypeDll 0.6396 0.4096 0.8452 800
## traittarsus_s:genotypeDll 0.6132 0.4319 0.8541 905
## traitSCT_s:genotypeDll 0.6789 0.4899 0.8578 800
## traitfemur_s:genotypewt 0.1812 -0.0375 0.3950 800
## traittibia_s:genotypewt 0.0200 -0.1820 0.2444 925
## traittarsus_s:genotypewt 0.4453 0.2504 0.6430 800
## traitSCT_s:genotypewt -0.0837 -0.2528 0.0935 721
## traitfemur_s:temp30 -0.8349 -0.9492 -0.7363 800
## traittibia_s:temp30 -0.8098 -0.9160 -0.7062 800
## traittarsus_s:temp30 -1.2378 -1.3350 -1.1277 800
## traitSCT_s:temp30 -0.8387 -0.9606 -0.7252 1076
## traitfemur_s:genotypewt:temp30 0.3586 0.2145 0.4892 903
## traittibia_s:genotypewt:temp30 0.4732 0.3335 0.6153 800
## traittarsus_s:genotypewt:temp30 0.5144 0.3980 0.6559 712
## traitSCT_s:genotypewt:temp30 0.7268 0.5852 0.8833 800
## pMCMC
## traitfemur_s:genotypeDll <0.001 **
## traittibia_s:genotypeDll <0.001 **
## traittarsus_s:genotypeDll <0.001 **
## traitSCT_s:genotypeDll <0.001 **
## traitfemur_s:genotypewt 0.11
## traittibia_s:genotypewt 0.86
## traittarsus_s:genotypewt <0.001 **
## traitSCT_s:genotypewt 0.38
## traitfemur_s:temp30 <0.001 **
## traittibia_s:temp30 <0.001 **
## traittarsus_s:temp30 <0.001 **
## traitSCT_s:temp30 <0.001 **
## traitfemur_s:genotypewt:temp30 <0.001 **
## traittibia_s:genotypewt:temp30 <0.001 **
## traittarsus_s:genotypewt:temp30 <0.001 **
## traitSCT_s:genotypewt:temp30 <0.001 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Sometimes it is easier to look at the fixed and random effects separately.
summary(MMLM1.fit$Sol)
##
## Iterations = 2001:9991
## Thinning interval = 10
## Number of chains = 1
## Sample size per chain = 800
##
## 1. Empirical mean and standard deviation for each variable,
## plus standard error of the mean:
##
## Mean SD Naive SE Time-series SE
## traitfemur_s:genotypeDll 0.5084 0.1123 0.00397 0.00397
## traittibia_s:genotypeDll 0.6396 0.1108 0.00392 0.00392
## traittarsus_s:genotypeDll 0.6132 0.1060 0.00375 0.00353
## traitSCT_s:genotypeDll 0.6789 0.0955 0.00338 0.00338
## traitfemur_s:genotypewt 0.1812 0.1119 0.00396 0.00396
## traittibia_s:genotypewt 0.0200 0.1080 0.00382 0.00355
## traittarsus_s:genotypewt 0.4453 0.1025 0.00362 0.00362
## traitSCT_s:genotypewt -0.0837 0.0929 0.00328 0.00346
## traitfemur_s:temp30 -0.8349 0.0552 0.00195 0.00195
## traittibia_s:temp30 -0.8098 0.0550 0.00194 0.00194
## traittarsus_s:temp30 -1.2378 0.0510 0.00180 0.00180
## traitSCT_s:temp30 -0.8387 0.0598 0.00211 0.00182
## traitfemur_s:genotypewt:temp30 0.3586 0.0724 0.00256 0.00241
## traittibia_s:genotypewt:temp30 0.4732 0.0732 0.00259 0.00259
## traittarsus_s:genotypewt:temp30 0.5144 0.0650 0.00230 0.00243
## traitSCT_s:genotypewt:temp30 0.7268 0.0785 0.00278 0.00278
##
## 2. Quantiles for each variable:
##
## 2.5% 25% 50% 75% 97.5%
## traitfemur_s:genotypeDll 0.2915 0.439 0.5090 0.5811 0.7362
## traittibia_s:genotypeDll 0.4248 0.569 0.6407 0.7151 0.8602
## traittarsus_s:genotypeDll 0.4096 0.542 0.6148 0.6843 0.8368
## traitSCT_s:genotypeDll 0.4948 0.616 0.6786 0.7433 0.8728
## traitfemur_s:genotypewt -0.0327 0.107 0.1809 0.2542 0.4028
## traittibia_s:genotypewt -0.1895 -0.051 0.0196 0.0886 0.2380
## traittarsus_s:genotypewt 0.2528 0.376 0.4442 0.5144 0.6460
## traitSCT_s:genotypewt -0.2549 -0.153 -0.0845 -0.0170 0.0922
## traitfemur_s:temp30 -0.9408 -0.875 -0.8349 -0.7953 -0.7274
## traittibia_s:temp30 -0.9160 -0.848 -0.8073 -0.7717 -0.7068
## traittarsus_s:temp30 -1.3419 -1.271 -1.2374 -1.2064 -1.1346
## traitSCT_s:temp30 -0.9599 -0.878 -0.8377 -0.7989 -0.7228
## traitfemur_s:genotypewt:temp30 0.2177 0.310 0.3610 0.4071 0.4908
## traittibia_s:genotypewt:temp30 0.3323 0.422 0.4762 0.5273 0.6145
## traittarsus_s:genotypewt:temp30 0.3765 0.471 0.5119 0.5616 0.6434
## traitSCT_s:genotypewt:temp30 0.5706 0.674 0.7255 0.7834 0.8749
And for the random effects.
summary(MMLM1.fit$VCV)
##
## Iterations = 2001:9991
## Thinning interval = 10
## Number of chains = 1
## Sample size per chain = 800
##
## 1. Empirical mean and standard deviation for each variable,
## plus standard error of the mean:
##
## Mean SD Naive SE Time-series SE
## traitfemur_s:traitfemur_s.line 0.2926 0.0973 0.003440 0.003440
## traittibia_s:traitfemur_s.line 0.2471 0.0868 0.003068 0.003068
## traittarsus_s:traitfemur_s.line 0.2238 0.0802 0.002836 0.002836
## traitSCT_s:traitfemur_s.line 0.0313 0.0576 0.002035 0.002035
## traitfemur_s:traittibia_s.line 0.2471 0.0868 0.003068 0.003068
## traittibia_s:traittibia_s.line 0.2744 0.0911 0.003221 0.003077
## traittarsus_s:traittibia_s.line 0.2207 0.0783 0.002770 0.002576
## traitSCT_s:traittibia_s.line 0.0476 0.0560 0.001979 0.001979
## traitfemur_s:traittarsus_s.line 0.2238 0.0802 0.002836 0.002836
## traittibia_s:traittarsus_s.line 0.2207 0.0783 0.002770 0.002576
## traittarsus_s:traittarsus_s.line 0.2604 0.0848 0.002998 0.002998
## traitSCT_s:traittarsus_s.line 0.0790 0.0585 0.002068 0.002068
## traitfemur_s:traitSCT_s.line 0.0313 0.0576 0.002035 0.002035
## traittibia_s:traitSCT_s.line 0.0476 0.0560 0.001979 0.001979
## traittarsus_s:traitSCT_s.line 0.0790 0.0585 0.002068 0.002068
## traitSCT_s:traitSCT_s.line 0.1845 0.0608 0.002148 0.002020
## traitfemur_s:traitfemur_s.units 0.6424 0.0209 0.000738 0.000738
## traittibia_s:traitfemur_s.units 0.4009 0.0182 0.000645 0.000646
## traittarsus_s:traitfemur_s.units 0.2139 0.0154 0.000546 0.000546
## traitSCT_s:traitfemur_s.units 0.0261 0.0167 0.000591 0.000591
## traitfemur_s:traittibia_s.units 0.4009 0.0182 0.000645 0.000646
## traittibia_s:traittibia_s.units 0.6668 0.0227 0.000801 0.000864
## traittarsus_s:traittibia_s.units 0.1800 0.0146 0.000517 0.000567
## traitSCT_s:traittibia_s.units 0.0604 0.0163 0.000576 0.000576
## traitfemur_s:traittarsus_s.units 0.2139 0.0154 0.000546 0.000546
## traittibia_s:traittarsus_s.units 0.1800 0.0146 0.000517 0.000567
## traittarsus_s:traittarsus_s.units 0.5336 0.0175 0.000619 0.000619
## traitSCT_s:traittarsus_s.units 0.0848 0.0162 0.000572 0.000578
## traitfemur_s:traitSCT_s.units 0.0261 0.0167 0.000591 0.000591
## traittibia_s:traitSCT_s.units 0.0604 0.0163 0.000576 0.000576
## traittarsus_s:traitSCT_s.units 0.0848 0.0162 0.000572 0.000578
## traitSCT_s:traitSCT_s.units 0.7471 0.0251 0.000888 0.000888
##
## 2. Quantiles for each variable:
##
## 2.5% 25% 50% 75% 97.5%
## traitfemur_s:traitfemur_s.line 0.15630 0.22113 0.2738 0.3417 0.5370
## traittibia_s:traitfemur_s.line 0.12541 0.18533 0.2295 0.2896 0.4520
## traittarsus_s:traitfemur_s.line 0.10913 0.16718 0.2091 0.2649 0.4115
## traitSCT_s:traitfemur_s.line -0.06695 -0.00367 0.0260 0.0615 0.1689
## traitfemur_s:traittibia_s.line 0.12541 0.18533 0.2295 0.2896 0.4520
## traittibia_s:traittibia_s.line 0.14739 0.20763 0.2588 0.3188 0.4870
## traittarsus_s:traittibia_s.line 0.10984 0.16327 0.2069 0.2599 0.4167
## traitSCT_s:traittibia_s.line -0.04762 0.01267 0.0419 0.0750 0.1688
## traitfemur_s:traittarsus_s.line 0.10913 0.16718 0.2091 0.2649 0.4115
## traittibia_s:traittarsus_s.line 0.10984 0.16327 0.2069 0.2599 0.4167
## traittarsus_s:traittarsus_s.line 0.14021 0.20080 0.2448 0.3034 0.4559
## traitSCT_s:traittarsus_s.line -0.01400 0.04107 0.0721 0.1105 0.2127
## traitfemur_s:traitSCT_s.line -0.06695 -0.00367 0.0260 0.0615 0.1689
## traittibia_s:traitSCT_s.line -0.04762 0.01267 0.0419 0.0750 0.1688
## traittarsus_s:traitSCT_s.line -0.01400 0.04107 0.0721 0.1105 0.2127
## traitSCT_s:traitSCT_s.line 0.09706 0.14135 0.1755 0.2147 0.3251
## traitfemur_s:traitfemur_s.units 0.60339 0.62848 0.6415 0.6560 0.6860
## traittibia_s:traitfemur_s.units 0.36806 0.38756 0.4008 0.4131 0.4398
## traittarsus_s:traitfemur_s.units 0.18475 0.20330 0.2138 0.2246 0.2436
## traitSCT_s:traitfemur_s.units -0.00602 0.01405 0.0263 0.0371 0.0581
## traitfemur_s:traittibia_s.units 0.36806 0.38756 0.4008 0.4131 0.4398
## traittibia_s:traittibia_s.units 0.62529 0.65110 0.6661 0.6819 0.7113
## traittarsus_s:traittibia_s.units 0.15057 0.16972 0.1799 0.1901 0.2075
## traitSCT_s:traittibia_s.units 0.02799 0.04957 0.0606 0.0714 0.0916
## traitfemur_s:traittarsus_s.units 0.18475 0.20330 0.2138 0.2246 0.2436
## traittibia_s:traittarsus_s.units 0.15057 0.16972 0.1799 0.1901 0.2075
## traittarsus_s:traittarsus_s.units 0.50248 0.52193 0.5322 0.5450 0.5670
## traitSCT_s:traittarsus_s.units 0.05412 0.07347 0.0850 0.0957 0.1171
## traitfemur_s:traitSCT_s.units -0.00602 0.01405 0.0263 0.0371 0.0581
## traittibia_s:traitSCT_s.units 0.02799 0.04957 0.0606 0.0714 0.0916
## traittarsus_s:traitSCT_s.units 0.05412 0.07347 0.0850 0.0957 0.1171
## traitSCT_s:traitSCT_s.units 0.70131 0.72943 0.7466 0.7627 0.7996
This is not the most friendly output, and it takes a while to get used to. However, we can see that we still have evidence for something interesting going, and we could extract the vectors of effects as we did above.
let’s look at the VCV matrix for the random effects of line in a slightly clearer way (as a matrix)
##' extract variance-covariance matrices for MCMCglmm objects
##' does not (yet) set cor, stddev, residual-var attributes
##' may be fragile: depends on group vars not having dots in them?
VarCorr.MCMCglmm <- function(object, ...) {
s <- summary(object$VCV)$statistics[,"Mean"]
grps <- gsub("^[^.]+\\.([[:alnum:]]+)$","\\1",names(s))
ss <- split(s,grps)
getVC <- function(x) {
nms <- gsub("^([^.]+)\\.[[:alnum:]]+$","\\1",names(x))
n <- length(nms)
L <- round(sqrt(n))
dimnms <- gsub("^([^:]+):.*$","\\1",nms[1:L])
return(matrix(x,dimnames=list(dimnms,dimnms),
nrow=L))
}
r <- setNames(lapply(ss,getVC),unique(grps))
return(r)
}
vv <- VarCorr(MMLM1.fit)
par(mfrow=c(1,2))
corrplot.mixed(cov2cor(vv$line),upper="ellipse")
corrplot.mixed(cov2cor(vv$units),upper="ellipse")
lme4 estimates (variables are in a different order)This is only a taste of what to do, and after this we could start asking questions about this genetic variance co-variance matrix.
Compare fixed effects:
tt <- tidy(MMLM1.fit)
tt2 <- tidy(lmer1)
tt_comb <- bind_rows(lmer=tt,MCMCglmm=tt2,.id="model") %>%
filter(effect=="fixed")
dwplot(tt_comb)+geom_vline(xintercept=0,lty=2)
glmmTMB, brms …